#board {
    border: 10px solid black;
    background-color: rgb(10, 0, 156);
    height: 765px;
    width: 765px;

    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.spot {
    z-index: 1;
    height: 15px;
    width: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 30px;
    border: 5px solid rgb(10, 0, 156);
    outline: 2px solid rgb(82, 110, 255);

    background-color: rgb(10, 0, 156);
    border-radius: 50%;
}

.selectSpot {
    z-index: 1;
    height: 15px;
    width: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 30px;
    border: 5px solid rgb(10, 0, 156);
    outline: 2px solid rgb(82, 110, 255);

    background-color: rgb(10, 0, 156);
    border-radius: 50%;
}

.placeSpot {
    z-index: 1;
    height: 15px;
    width: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 30px;
    border: 5px solid rgb(82, 110, 255);

    background-color: rgb(82, 110, 255);
    border-radius: 50%;
}

.deadSpot {
    height: 25px;
    width: 25px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 30px;
    margin-right: 30px;

    background-color: rgb(10, 0, 156);
    
}

.selectSpot.hover {
    outline: 2px solid rgb(255, 83, 83);
}

.placeSpot:hover {
    outline: 2px solid rgb(255, 83, 83);
}

#boardLines {
    position:absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: transparent;
}

.line {
    z-index: 0;
    stroke: rgb(82, 110, 255);
    stroke-width: 2px;
}

.chip.white {
     background-color: white;
     border-color: white;
}

.chip.black {
    background-color: black;
    border-color: black;
}